* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background: #050d1f;
    overflow-x: hidden;
  }

  body {
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.07), transparent 50%),
    radial-gradient(circle at bottom right, rgba(0, 136, 255, 0.08), transparent 60%),
    #050d1f; /* azul bem escuro */
background-repeat: no-repeat;
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
color: white;
min-height: 100vh;
overflow-x: hidden;
position: relative;
  }

  #neon-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 540px;
    min-height: 100vh;
    margin: auto;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .logo-container {
    
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    display: flex;
  justify-content: center;
  align-items: center;
    overflow: hidden;
    border: 2px solid #00f2ff;
    box-shadow: 0 0 10px #00f2ff;
  }

  .logo {
    width: 80%;
    height: 80%;
  }

  .description {
    color: #9ac3ff;
    font-size: 1em;
    margin-top: 1.5em;
    text-align: center;
  }
  .descriptionparagrafo{
    color: #9ac3ff;
    font-size: 0.8em;
    text-align: center;
    margin-bottom: 2em;

  }

  .list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
  }

  .list-item {
    background: rgba(0, 136, 255, 0.08);
    border: 1px solid #00f0ff33;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 1em 1.5em;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 6px #00f0ff22;
  }

  .list-item:hover {
    transform: translateY(-3px);
  box-shadow: 0 0 12px #00f0ff88;
  background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.07), transparent 50%),
              radial-gradient(circle at bottom right, rgba(0, 136, 255, 0.08), transparent 60%),
              #050d1f; /* azul bem escuro */
  background-repeat: no-repeat;
  background-size: cover;
  }

  .link {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  footer {
    
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.2em;
        margin-top: 2.5em;
        padding-bottom: 2em;
    
      
  }

  .contact {
    background-color: #001933;
  border-radius: 50%;
  padding: 0.8em;
  border: 1px solid #00f0ff55;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 5px #00f0ff33;
  }

  .contact:hover {
    transform: scale(1.05);
  box-shadow: 0 0 12px #00f0ff99;
  background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.07), transparent 50%),
              radial-gradient(circle at bottom right, rgba(0, 136, 255, 0.08), transparent 60%),
              #050d1f; /* azul bem escuro */
  background-repeat: no-repeat;
  background-size: cover;
  }

  .contact img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
  }

  .contact:hover img {
    transform: scale(1.2);
  }

  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #25d366;
    animation: pulse 1.5s infinite;
    z-index: 999;
  }

  .whatsapp-btn img {
    width: 35px;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0px #25d366; }
    50% { box-shadow: 0 0 15px #25d366; }
    100% { box-shadow: 0 0 0px #25d366; }
  }

  @media screen and (max-width: 600px) {
    .logo {
      width: 100px;
      height: 100px;
    }
  
    .link {
      font-size: 1em;
    }
  
    .contact img {
      width: 20px;
      height: 20px;
    }
  }